API Documentation
Quick Start Guide
Authentication
The API uses token-based authentication (JWT or OAuth 2.0). Each request must include a valid access token.
Making a Prediction Request
Clients send feature data as JSON to the inference endpoint.
POST /v1/predict Authorization: Bearer <access_token> Content-Type: application/json
##Response Structure## The response includes the prediction and metadata required for traceability.
{ "prediction": 0.92, "confidence": 0.87, "model_version": "fraud-detector:v3.1.4", "request_id": "abc-123" }